API-CHANGES.txt 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155
  1. 0.29.7:
  2. * Add TPromiseModel with unary value / signal passing to 1-arg.
  3. * Promise class as well as PromiseExecution use it.
  4. * Add class NonLifoReturn.
  5. * Including convenient NonLifoReturn class >> #reifyIfFeasible:.
  6. + Error class >>
  7. + messageText:
  8. + PromiseExecution >>
  9. + do:
  10. + signal:
  11. + try:
  12. + value:
  13. + TPromiseModel >>
  14. + signal
  15. + signal:
  16. + value
  17. + value:
  18. 0.29.5:
  19. + (model in `Promise new: [ :model | ]`) >>
  20. + do:
  21. + try:
  22. 0.29.3:
  23. * Deprecate TestCase >> debugCase.
  24. * Remove class DebugTestContext.
  25. + JSObjectProxy
  26. + isThenable
  27. + Promise class >>
  28. + delayMilliseconds:
  29. + TIsInGroup >>
  30. + isThenable
  31. + TThenable >>
  32. + isThenable
  33. 0.29.2:
  34. * Deprecate ClassBuilder >> addSubclass:named:instanceVariableNames:package:.
  35. * Deprecate ... >> migrateClassNamed:superclass:instanceVariableNames:package:.
  36. * Behavior >> instanceVariableNames aimed at only that. No visible change atm.
  37. * Deprecate Object >> asJavaScript{Object,Source}.
  38. * Hard to do generically if slots are added later.
  39. * InstanceVar => SlotVar and related apis (addIVar: => addSlotVar:).
  40. + Behavior >>
  41. + slots
  42. + Boolean >>
  43. + asJavaScriptSource
  44. + ClassBuilder >>
  45. + addSubclass:named:slots:package:
  46. + migrateClassNamed:superclass:slots:package:
  47. + ProtoObject >>
  48. + perform:with:
  49. + SequenceableCollection >>
  50. + pairsCollect:
  51. + pairsDo:
  52. + TBehaviorDefaults >>
  53. + slots
  54. + TBehaviorProvider >>
  55. + allInstanceVariableNames
  56. + allSlotNames
  57. + allSlots
  58. + instanceVariableNames
  59. + slotNames
  60. + UndefinedObject >>
  61. + asJavaScriptSource
  62. - Behavior >>
  63. - allInstanceVariableNames
  64. - instanceVariableNames
  65. - TBehaviorDefaults >>
  66. - allInstanceVariableNames
  67. 0.29.1:
  68. + Package >>
  69. + context
  70. + contextBlock
  71. + contextBlock:
  72. - Package >>
  73. - evalBlock
  74. - evalBlock:
  75. 0.27.1:
  76. + Number >>
  77. + isFinite
  78. + isNaN
  79. + Number class >>
  80. + negativeInfinity
  81. + positiveInfinity
  82. 0.27.0:
  83. + JSObjectProxy class >>
  84. + associationsOfProxy:
  85. 0.26.0:
  86. * Deprecate $core.seamless.
  87. + MethodContext >>
  88. + hydrated
  89. 0.25.4:
  90. * Add class DebugTestContext.
  91. + TestCase >>
  92. + debugCase
  93. 0.25.1:
  94. + Collection >>
  95. + copyEmpty
  96. + shortenedPrintString
  97. 0.25.0:
  98. * Deprecate Behavior >> javascriptConstructor(:)
  99. * Deprecate ProtoObject >> instVarAt:(put:)
  100. * Lots of changes in Compiler.
  101. * Added Teachable class.
  102. + Array >>
  103. + allIn:
  104. + Behavior >>
  105. + alternateConstructorViaSelector:
  106. + applySuperConstructorOn:withArguments:
  107. + beJavaScriptSubclassOf:
  108. + javaScriptConstructor
  109. + javaScriptConstructor:
  110. + superPrototype
  111. + BlockClosure >>
  112. + tryIfTrue:catch:
  113. + ProtoObject >>
  114. + instVarNamed:
  115. + instVarNamed:put:
  116. + SequenceableCollection >>
  117. + copyWithFirst:
  118. + SmalltalkImage >>
  119. + isError:
  120. + try:ifTrue:catch:
  121. + amber/boot api >>
  122. + detachClass(klass)
  123. + amber/helpers exports >>
  124. + $nil
  125. - Error >>
  126. - beSmalltalkError
  127. - isSmalltalkError
  128. - JavaScriptError >>
  129. - shouldBeStubbed
  130. - wrap
  131. - MethodContext >>
  132. - stubHere
  133. - stubToAtMost:
  134. - amber/boot api >>
  135. - addElement(arraySet, el)
  136. - removeElement(arraySet, el)
  137. 0.23.2:
  138. + Platform class >>
  139. + fetch:
  140. + fetchUrl:options:
  141. + BrowserPlatform >>
  142. + fetch:
  143. + fetchUrl:options:
  144. + NodePlatform >>
  145. + fetch:
  146. + fetchUrl:options:
  147. 0.23.1:
  148. + TBehaviorDefaults >>
  149. + includingPossibleMetaDo:
  150. + Class >>
  151. + includingPossibleMetaDo:
  152. + CompiledMethod >>
  153. + origin
  154. - SmalltalkImage >>
  155. - includesKey:
  156. 0.23.0:
  157. * Namespace change: amber_core => amber/core.
  158. * amber/boot api addClass only takes 3 params; 4 param version deprecated
  159. + SmalltalkImage >>
  160. + beClean
  161. + amber/helpers exports >>
  162. + beClean
  163. + amber/boot api >>
  164. + setSlots(klass, arrayOfNames)
  165. 0.22.4:
  166. * Remove class IndexableCollection, trait TKeyValueCollection.
  167. * Merge CharacterArray class into String class
  168. * Deprecate CharacterArray class
  169. * Deprecate Collection >> copyWithAll:, #, is enough.
  170. + amber/helpers exports
  171. + loadPackages
  172. - Array >>
  173. - numericallyIndexable
  174. - Set
  175. - detect:ifNone: (pushed up to Collection)
  176. - SequenceableCollection
  177. - numericallyIndexable
  178. - String >>
  179. - numericallyIndexable
  180. 0.22.1:
  181. + BlockClosure >>
  182. + provided
  183. + Class >>
  184. + provided
  185. 0.22.0:
  186. * Deprecate Exception >> resignal. Should have been #pass.
  187. + Compiler >>
  188. + ast:forClass:protocol:
  189. + cleanCodeGenerator
  190. + codeGenerator
  191. + forClass:protocol:
  192. + Exception
  193. + outer
  194. + pass
  195. + JSObjectProxy >>
  196. + removeKey:
  197. + Number >>
  198. + ln1p
  199. + SmalltalkImage >>
  200. + postLoad
  201. - AmberBootstrapInitialization class >>
  202. - initializeClasses
  203. - ClassBuilder >>
  204. - setupClass:
  205. - Compiler >>
  206. - compileNode:forClass:package:
  207. - ProtoObject
  208. - asJSON
  209. - asJavascript
  210. - SmalltalkImage >>
  211. - packageAt:
  212. - amber/boot api >>
  213. - nextId
  214. 0.21.1:
  215. + ClassBuilder >>
  216. + class:instanceVariables:
  217. + JSObjectProxy class >>
  218. + null
  219. + undefined
  220. - ClassBuilder >>
  221. - basicClass:instanceVariableNames:
  222. 0.21.0:
  223. * Deprecate SmalltalkImage >> existsJsGlobal:
  224. + Number >>
  225. + bitAnd:
  226. + bitNot
  227. + bitOr:
  228. + bitXor:
  229. + printStringBase:
  230. + Platform class >>
  231. + includesGlobal:
  232. 0.20.0:
  233. * Internal kernel fields naming changes.
  234. + amber/boot api >>
  235. + traitsOrClasses
  236. - SmalltalkImage >>
  237. - legacyGlobalJsVariables
  238. - amber/boot >>
  239. - nil
  240. - dnu
  241. - amber/boot api >>
  242. - classes
  243. 0.19.1:
  244. * Deprecate amber/boot api nextId, prop globalJsVariables.
  245. * Deprecate ProtoObject >> identityHash.
  246. * Deprecate SmalltalkImage >> packageAt: in favour of explicit #packageAt:if{Absent,Present}:.
  247. + AmberBootstrapInitialization class >>
  248. + run
  249. + initializeClasses
  250. + organizeClasses
  251. + organizeMethods
  252. + Behavior >>
  253. + basicOrganization
  254. + basicOrganization:
  255. + ClassOrganizer >>
  256. + theClass
  257. + ClassOrganizer class >>
  258. + on:
  259. + Compiler class >>
  260. + eval:
  261. + JavaScriptException >>
  262. + shouldBeStubbed
  263. + wrap
  264. + Message class >>
  265. + selector:arguments:notUnderstoodBy:
  266. + MethodContext >>
  267. + stubHere
  268. + stubToAtMost:
  269. + NonBooleanReceiver class >>
  270. + signalOn:
  271. + Package >>
  272. + evalBlock
  273. + evalBlock:
  274. + Package class >>
  275. + named:javaScriptDescriptor:
  276. + SmalltalkImage >>
  277. + packageDictionary
  278. + packageAt:ifPresent:
  279. + TBehaviorProvider >>
  280. + methodOrganizationEnter:andLeave:
  281. + TMasterBehavior >>
  282. + definedMethods
  283. + enterOrganization
  284. + leaveOrganization
  285. + Trait >>
  286. + basicOrganization
  287. + basicOrganization:
  288. + UndefinedObject >>
  289. + ==
  290. + Number >>
  291. + min:max:
  292. + degreesToRadians
  293. + radiansToDegrees
  294. + arcTan:
  295. + between:and:
  296. + Number class >>
  297. + radiansPerDegree
  298. + Point >>
  299. + dotProduct:
  300. + normal
  301. + angle
  302. + normalized
  303. + r
  304. + corner:
  305. + extent:
  306. + rectangle:
  307. + Rectangle >>
  308. + =
  309. + corner
  310. + origin
  311. + containsPoint:
  312. + containsRect:
  313. + printOn:
  314. + Rectangle class >>
  315. + origin:corner:
  316. + origin:extent:
  317. + point:point:
  318. - Package >>
  319. - basicName:
  320. - basicImports
  321. - ProtoObject >>
  322. - isSameInstanceAs:
  323. - ObjectTest >>
  324. - testIdentityHash
  325. - amber/boot api >>
  326. - reservedWords (with the hope no one uses it directly)
  327. 0.19.0:
  328. * Remove class Thenable, add trait TThenable.
  329. * Behavior / Trait hierarchy uses traits.
  330. + NativeFunction class >>
  331. + isNativeFunction:
  332. + IRInstructions >>
  333. + isSelf
  334. + isSuper
  335. + IRVariable >>
  336. + isSelf
  337. + isSuper
  338. + ScopeVar >>
  339. + isSelf
  340. + isSuper
  341. + PseudoVar >>
  342. + isSelf
  343. + isSuper
  344. +UndefinedObject >>
  345. + identityHash
  346. + value
  347. + amber/boot >>
  348. + nilAsValue
  349. - IRSend >>
  350. - isSuperSend
  351. 0.18.3:
  352. * Move {add,remove}Element from Array.prototype to kernel API.
  353. * New superclass of Behavior named BehaviorBody, pushed up some methods.
  354. * Represents named holder of methods; hierarchy and instantiation left to Behavior.
  355. * Add class Trait as subclass of BehaviorBody.
  356. * Add class TraitTransformation.
  357. * Deprecate #asJSON in favour of #asJavaScriptObject.
  358. * Deprecate #asJavascript in favour of #asJavaScriptSource.
  359. + BehaviorBody >>
  360. + setTraitComposition:
  361. + traitCompositionDefinition
  362. + traitUsers
  363. + allSubclassesDo:
  364. + superclass
  365. + Trait >>
  366. + allInstanceVariableNames
  367. + allSubclassesDo:
  368. + asJavascript
  369. + asTraitComposition
  370. + category
  371. + classTag
  372. + definition
  373. + package
  374. + superclass
  375. + theMetaClass
  376. + theNonMetaClass
  377. + exportBehaviorDefinitionTo:using:
  378. + traitUsers
  379. + package:
  380. + Trait class >>
  381. + named:package:
  382. + named:uses:package:
  383. + TraitTransformation >>
  384. + -
  385. + @
  386. + addAliases:
  387. + addExclusions:
  388. + aliases
  389. + asJSON
  390. + asJavascript
  391. + asTraitComposition
  392. + asTraitTransformation
  393. + definition
  394. + exclusions
  395. + initialize
  396. + postCopy
  397. + trait
  398. + trait:
  399. + Collection >>
  400. + copyWithout:
  401. + SequenceableCollection >>
  402. + reverseDo:
  403. + Array >>
  404. + asTraitComposition
  405. + amber/boot api >>
  406. + addElement
  407. + removeElement
  408. + wrapJavaScript
  409. + CharacterArray >>
  410. + asSymbolPrintOn:
  411. + symbolPrintString
  412. + String >>
  413. + isSelector
  414. + StringStream >>
  415. + print:
  416. + printSymbol:
  417. + Package >>
  418. + traitCompositions
  419. + Class >>
  420. + subClass:
  421. + subClass:uses:
  422. + subClass:uses:instanceVariables:
  423. + subClass:uses:instanceVariables:category:
  424. + subClass:uses:instanceVariables:classVariables:poolDictionaries:category:
  425. + subClass:uses:instanceVariables:package:
  426. + UndefinedObject >>
  427. + subClass:
  428. + subClass:uses:
  429. + subClass:uses:instanceVariables:
  430. + subClass:uses:instanceVariables:category:
  431. + subClass:uses:instanceVariables:classVariables:poolDictionaries:category:
  432. + subClass:uses:instanceVariables:package:
  433. + Metaclass >>
  434. + uses:instanceVariableNames:
  435. - Association >>
  436. - importsString
  437. - String >>
  438. - importsString
  439. - AbstractExporter
  440. - classNameFor:
  441. - Exporter >>
  442. - jsClassNameFor:
  443. 0.18.2:
  444. * Add Platform-DOM package with DOM-related stuff.
  445. * Platform-DOM not loaded by default. Packages that will use it will import it.
  446. + PlatformDom class >>
  447. + isFeasible
  448. + isDomNode:
  449. + newCustomEvent:detail:
  450. + toArray:
  451. + CharacterArray >>
  452. + asDomNode
  453. + Collection >>
  454. + asDomNode
  455. + JSObjectProxy >>
  456. + asDomNode
  457. + String >>
  458. + htmlTextContent
  459. 0.18.1:
  460. + ASTNode >>
  461. + withTail:
  462. - SendNode >>
  463. - valueWithReceiver:
  464. 0.18.0:
  465. * Remove class RethrowErrorHandler (hack for cli before 0.12.3).
  466. * Add Kernel-Dag package with abstract DAG-node and DAG-node visitor.
  467. * Some internal API changes in Compiler-* (including the move to DAG-node).
  468. - Object >>
  469. - throw:
  470. 0.17.0:
  471. * Remove classes InterfacingObject, PlatformInterface.
  472. * Deprecate $boot.nil (use $boot.nilAsReceiver).
  473. + amber/boot >>
  474. + nilAsReceiver
  475. - NativeFunction class >>
  476. - constructor:
  477. - constructor:value:
  478. - constructor:value:value:
  479. - constructor:value:value:value:
  480. 0.16.1:
  481. * Deprecate $boot.dnu (use $boot.nilAsClass).
  482. + amber/boot >>
  483. + nilAsClass
  484. 0.16.0:
  485. * Deprecate ClassBuilder >> setupClass:
  486. * $core.initialize now returns a Promise
  487. * $core.addClass now returns the class
  488. + amber/boot api >>
  489. + send2
  490. + traverseClassTree
  491. + Promise class >>
  492. + new
  493. - amber/boot api >>
  494. - wrapClassName
  495. - send
  496. - allSubclasses
  497. - AbstractCodeGenerator >>
  498. - classNameFor:
  499. 0.15.1:
  500. * Thenable class added
  501. * Promise class added, wraps JS Promise, subclass of Thenable
  502. + Thenable >>
  503. + catch:
  504. + on:do:
  505. + on:do:catch:
  506. + then:
  507. + then:catch:
  508. + then:on:do:
  509. + then:on:do:catch:
  510. + JSObjectProxy >>
  511. + catch:
  512. + on:do:
  513. + on:do:catch:
  514. + then:
  515. + then:catch:
  516. + then:on:do:
  517. + then:on:do:catch:
  518. + amber/boot api >>
  519. + seamless
  520. + Promise class >>
  521. + new:
  522. + forBlock:
  523. + value:
  524. + signal:
  525. + all:
  526. + any:
  527. 0.14.18:
  528. * Some internal API changes in Compiler-*.
  529. 0.14.14:
  530. * InterfacingObject >> ajax: deprecated
  531. * PlatformInterface class deprecated
  532. * Class BrowserInterface removed
  533. * Class Terminal, BrowserTerminal added
  534. * Class Platform, BrowserPlatform added
  535. + Environment >>
  536. + renamePackage:to:
  537. + Platform class >>
  538. + globals
  539. + newXhr
  540. + Terminal class >>
  541. + alert:
  542. + confirm:
  543. + prompt:
  544. + prompt:default:
  545. SmalltalkImage >>
  546. + existsJsGlobal:
  547. - PlatformInterface class >>
  548. - initialize
  549. - setWorker:
  550. 0.14.12:
  551. + JSObjectProxy >>
  552. + putOn:
  553. + ProtoStream >>
  554. + nextPutJSObject:
  555. 0.14.11:
  556. * Basic streaming protocol extracted from Stream to ProtoStream
  557. + Object >>
  558. + in:
  559. + JSObjectProxy >>
  560. + in:
  561. 0.14.10:
  562. + JSObjectProxy class >>
  563. + addObjectVariablesTo:ofProxy:
  564. + compareJSObjectOfProxy:withProxy:
  565. + forwardMessage:withArguments:ofProxy:
  566. + jsObject:ofProxy:
  567. + lookupProperty:ofProxy:
  568. - JSObjectProxy >>
  569. - jsObject:
  570. - lookupProperty:
  571. - compareJSObjectWith:
  572. - addObjectVariablesTo:
  573. - forwardMessage:withArguments:
  574. 0.14.4:
  575. + AmdExporter >>
  576. + importsForOutput:
  577. + AbstractCodeGenerator >>
  578. + currentPackage
  579. + currentPackage:
  580. + Compiler >>
  581. + currentPackage
  582. + currentPackage:
  583. + compile:forClass:protocol:
  584. + compileNode:forClass:package:
  585. + SemanticAnalyzer >>
  586. + thePackage
  587. + thePackage:
  588. + isVariableUndefined:inPackage:
  589. - Compiler >>
  590. - compile:
  591. - compile:forClass:
  592. - compileExpression:
  593. - SemanticAnalyzer >>
  594. - isVariableGloabllyUndefined:
  595. - Behavior >>
  596. - compile:
  597. 0.14.3:
  598. * #heliosClass is now #classTag
  599. + Compiler >>
  600. + eval:forPackage:
  601. + Behavior >>
  602. + packageOfProtocol:
  603. + Exporter >>
  604. + exportPackageContextOf:on:
  605. + exportPackageImportsOf:on:
  606. + Package >>
  607. + basicImports
  608. + imports
  609. + imports:
  610. + importsDefinition
  611. + importsFromJson:
  612. + importsAsJson
  613. + sortedImportsAsArray
  614. + validateImports:
  615. + Package class >>
  616. + named:imports:transport:
  617. + Association >>
  618. + importsString
  619. + String >>
  620. + importsString
  621. + ProtoObject >>
  622. + ifNil:
  623. + ifNil:ifNotNil:
  624. + ifNotNil:
  625. + ifNotNil:ifNil:
  626. + isNil
  627. + notNil
  628. - Object >>
  629. - ifNil:
  630. - ifNil:ifNotNil:
  631. - ifNotNil:
  632. - ifNotNil:ifNil:
  633. - isNil
  634. - notNil
  635. 0.14.1:
  636. * NativeFunction class >> constructor:[value:...] deprecated
  637. + NativeFunction class >>
  638. + constructorNamed:
  639. + constructorNamed:value:
  640. + constructorNamed:value:value:
  641. + constructorNamed:value:value:value:
  642. + constructorOf:
  643. + constructorOf:value:
  644. + constructorOf:value:value:
  645. + constructorOf:value:value:value:
  646. + functionNamed:
  647. + functionNamed:value:
  648. + functionNamed:value:value:
  649. + functionNamed:value:value:value:
  650. + functionNamed:valueWithArgs:
  651. + functionOf:
  652. + functionOf:value:
  653. + functionOf:value:value:
  654. + functionOf:value:value:value:
  655. + functionOf:valueWithArgs:
  656. + methodOf:this:
  657. + methodOf:this:value:
  658. + methodOf:this:value:value:
  659. + methodOf:this:value:value:value:
  660. + methodOf:this:valueWithArgs:
  661. + SmalltalkImage >>
  662. + optOut:
  663. + cancelOptOut:
  664. 0.14.0:
  665. + Object >>
  666. + asJQuery
  667. + asJQueryInContext:
  668. + BlockClosure >>
  669. + asJQuery
  670. + asJQueryInContext:
  671. - AnnouncementSubscription >>
  672. - block
  673. - block:
  674. - Collection >>
  675. - contains:
  676. - String >>
  677. - asSelector
  678. - asJavaScriptSelector
  679. - SmalltalkImage >>
  680. - at:
  681. - at:ifAbsent:
  682. - at:put:
  683. - current
  684. - vm
  685. - createPackage:properties:
  686. - MethodContext >>
  687. - temps
  688. - Object >>
  689. - try:catch:
  690. 0.13.2:
  691. + SourceArea class >>
  692. + codeMirror
  693. 0.13.1:
  694. * String >> asSelector is now String >> asJavaScriptMethodName
  695. * String >> asJavaScriptSelector is now String >> asJavaScriptPropertyName
  696. * smalltalk.selector is now smalltalk.st2js
  697. * smalltalk.convertSelector is now smalltalk.js2st
  698. * Collection >> ifEmpty:ifNotEmpty: family passes self to ifNotEmpty: block
  699. * Smalltalk vm is now Smalltalk core
  700. * boot.js's .vm is now .api
  701. * amber load sets' .vm is now .api
  702. * Internal variables smalltalk/globals/_st are now $core/$globals/$recv
  703. + smalltalk.
  704. + accessJavaScript
  705. + Object >>
  706. + postMessageTo:
  707. + postMessageTo:origin:
  708. + Class >>
  709. + heliosClass
  710. + SmalltalkImage >>
  711. + core
  712. + amber/boot
  713. + api
  714. + amber/{devel,deploy,lang} exports
  715. + api
  716. - ProtoObject class >>
  717. - heliosClass
  718. - Object class >>
  719. - heliosClass
  720. - amber/boot
  721. - vm
  722. 0.12.6:
  723. + String >>
  724. + value:
  725. + ProtocolAnnouncement >>
  726. + package
  727. + Behavior >>
  728. + isTestClass
  729. + Package >>
  730. + isTestPackage
  731. + amber/{devel,deploy,lang} exports
  732. + nil
  733. + amber/helpers exports
  734. + nil
  735. 0.12.4:
  736. * Package Canvas renamed to Web
  737. * Object >> try:catch: deprecated in favour of BlockClosure >> tryCatch:
  738. + Announcer >>
  739. + on:do:for:
  740. + Node >>
  741. + navigationNodeAt:ifAbsent:
  742. + BlockClosure >>
  743. + tryCatch:
  744. + Environment >>
  745. + evaluate:for:
  746. + AmberCli >>
  747. + version:
  748. + Object >>
  749. + deprecatedAPI:
  750. - Environment >>
  751. - eval:on:
  752. - evaluateString:on:
  753. 0.12.3:
  754. * Package Import-Export renamed to Kernel-ImportExport
  755. * A dozen of methods moved from Object to ProtoObject
  756. * HashedCollection >> at:ifAbsentPut: pushed up to SequenceableCollection
  757. * HashedCollection >> , is now allowed (removed shouldNotImplement)
  758. * HashedCollection and Dictionary both subclasses of AssociativeCollection
  759. * Smalltalk class moved to SmalltalkImage class, Smalltalk is now global var
  760. * Smalltalk current deprecated in favour of Smalltalk
  761. * Smalltalk at:[put:] deprecated in favour of Smalltalk globals at:[put:]
  762. * <smalltalk.ClassName> deprecated in favour of <globals.ClassName>
  763. + CompiledMethod >>
  764. + defaultProtocol
  765. + Behavior >>
  766. + compile:protocol:
  767. + removeProtocolIfEmpty:
  768. + Package >>
  769. + load
  770. + loadFromNamespace:
  771. + Package class >>
  772. + load:
  773. + load:fromNamespace:
  774. + PackageTransport >> load
  775. + PackageHandler >> load:
  776. + AmdPackageHandler >> load:
  777. + Set >> removeAll
  778. + AssociativeCollection class
  779. + BucketStore class
  780. + SmalltalkImage >>
  781. + globals
  782. + vm
  783. + settings
  784. + Setting class
  785. + String >>
  786. + asSetting
  787. + asSettingIfAbsent:
  788. + settingValue
  789. + settingValueIfAbsent:
  790. + settingValue:
  791. + Smalltalk global variable
  792. - CompiledMethod >>
  793. - category: (use #protocol:)
  794. - defaultCategory
  795. - Behavior >> compile:category:
  796. - HTMLCanvas class >>
  797. - browserVersion
  798. - isMSIE
  799. - isMozilla
  800. - isOpera
  801. - isWebkit
  802. 0.12.2:
  803. * Collection >> contains: is deprecated in favor of anySatisfy:
  804. + Announcer >> on:doOnce:
  805. + String >>
  806. + uriEncoded
  807. + uriDecoded
  808. + uriComponentEncoded
  809. + uriComponentDecoded
  810. + Collection >>
  811. + removeAll
  812. + ifEmpty:ifNotEmpty:
  813. + ifNotEmpty:ifEmpty:
  814. + anyOne
  815. + noneSatisfy:
  816. + anySatisfy:
  817. + allSatisfy:
  818. 0.12.0:
  819. * SmalltalkMethodContext.prototype.fillBlock() takes a third 'index' parameter
  820. * Existing classes moved to new KernelInfrastructure package
  821. * ImporterExporter
  822. * are now StreamExporters
  823. * aware of AMD namespaces
  824. * support transport types and commit channels
  825. + Node >>
  826. + nextChild
  827. + method
  828. + postCopy
  829. + isCascadeNode
  830. + isLastChild
  831. + BlockNode >>
  832. + nextNode:
  833. + nextChild
  834. + SendNode >>
  835. + isCascadeSendNode
  836. + shouldBeAliased
  837. + CompiledMethod >> sendTo:arguments:
  838. + Array >>
  839. + addFirst:
  840. + removeLast
  841. + Number >>
  842. + ceiling
  843. + floor
  844. + asNumber
  845. + //
  846. + cos
  847. + sin
  848. + tan
  849. + arcCos
  850. + arcSin
  851. + arcTan
  852. + log
  853. + log:
  854. + raisedTo:
  855. + sign
  856. + **
  857. + ln
  858. + e
  859. + String class >> esc
  860. + String >>
  861. + asMutator
  862. + capitalized
  863. + isCapitalized
  864. + JSProxy >> printString
  865. + Behavior >>
  866. + ownProtocols
  867. + ownMethods
  868. + JSStream >> nextPutSendIndexFor:
  869. + InterfacingObject class
  870. + Interpreter class
  871. + DocumentFragmentTag class
  872. + AbstractExporter class
  873. + PlatformInterface class
  874. - Node >> extent
  875. - JSStream >> nextPutStatement:with:
  876. - Smalltalk.installSuperclass()
  877. - ClassReferenceNode class (now handled via VariableNode)
  878. 0.11.0:
  879. * AnnouncementSubscription use #valuable: instead of #block: (deprecated)
  880. * AbstractCodeGenerator inherits from Object, not NodeVisitor
  881. * Object>>printString
  882. * replace >>printString with >>printOn:
  883. * replace >>storeString with >>printString
  884. * PackageLoader is now PackageHandler (>>commit: >>setupPackagenamed:prefix: >>ajaxPutAt:data:
  885. * Package>>fetch: is now Package>>load:
  886. * Package>>fetch:prefix: is now Package>>load:prefix:
  887. * Queue>>front replaced by Queue>>next
  888. * Queue>>frontIfAbsent: replaced by Queue>>nextIfAbsent:
  889. * Queue>>back: replaced by Queue>>nextPut:
  890. * smalltalk.addMethod() does not use explicit JS selector
  891. * JSObjectProxy>>canForwardMessage: replaced by use of JSObjectProxy>>lookupProperty: with asJavaScriptSelector
  892. * JSObjectProxy>>forwardMessage: replaced by explicit JSObjectProxy>>forwardMessage:withArguments:
  893. * String>>asJavaScriptSelector moved to Kernel-Objects package
  894. + Object>>asString
  895. + Object>>putOn:
  896. + String>>isVowel
  897. + Collection>>putOn:
  898. + CharacterArray>>putOn:
  899. + Stream>><<
  900. + Stream>>write
  901. + SequenceableCollection>>newStream
  902. + SequenceableCollection>>readStream
  903. + SequenceableCollection>>stream
  904. + SequenceableCollection>>streamClass
  905. + SequenceableCollection>>writeStream
  906. + Collection>>isImmutable
  907. + Stream>>nextPutString:
  908. + StringStream>>nextPutString:
  909. + JSStream>>nextPutClassRefFunction:
  910. + String>>crlfSanitized
  911. + inlined Block now also responds to >>value:
  912. + Parser: split literal into runtimeLiteral and parseTimeLiteral
  913. + Parser: write #(4 #(5 6 #()) 7) as #(4 (5 6 ()) 7)
  914. + Parser: write #(#on:do: #Object) as #(on:do: Object)
  915. + Parser: Symbols for binarie selectores
  916. + Package>>commit
  917. + AIContext>>initializeLocals
  918. + ASTInterpreter>>withBlockContext:
  919. + smalltalk.allSelectors()
  920. + Object>>isCompiledMethod
  921. + Object>>isPackage
  922. + Object>>isBehavior
  923. + ClassMoved Announcemen class
  924. + Behavior>>includesBehavior:
  925. + Environment>>classes
  926. + Environment>>allSelectors
  927. + Environment>>removeProtocol:
  928. + Environment>>renameProtocol:to:in:
  929. + CompiledMethod>>protocol:
  930. + Smalltalk>>globalJsVariables
  931. + Smalltalk>>addGlobalJsVariable:
  932. + Smalltalk>>deleteGlobalJsVariable:
  933. - Object>>storeOn:
  934. - Object>>log:block:
  935. - Object>>printNl
  936. - Compiler-IR.st >>javascriptSelector
  937. - Compiler-IR.st >>nextPutVar:
  938. - Kernel-Collections.st >>asSuperSelector
  939. - Collection>>readStream
  940. - Collection>>stream
  941. - Collection>>streamClass
  942. - Collection>>writeStream
  943. - Symbol class (replaced with String)
  944. - IRInlinedNonLocalReturn class
  945. - IRInlinedSend>>nonLocalReturnInliner
  946. - IRNonLocalReturnInliner class
  947. - Package>>dependencies
  948. - Package>>dependencies:
  949. - Package>>properties
  950. - Package>>jsProperties
  951. - Package>>jsProperties:
  952. - Package>>propertiesAsJSON
  953. - Package>>propertyAt:
  954. - Package>>propertyAt:ifAbsent:
  955. - Package>>propertyAt:put:
  956. - Browser>>ajaxPutAt:data: