API-CHANGES.txt 19 KB

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